home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / am-help.js < prev    next >
Encoding:
JavaScript  |  2004-07-18  |  4.4 KB  |  114 lines

  1. /* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Mozilla Communicator client code, released
  16.  * March 31, 1998.
  17.  *
  18.  * The Initial Developer of the Original Code is
  19.  * Netscape Communications Corporation.
  20.  * Portions created by the Initial Developer are Copyright (C) 1998-1999
  21.  * the Initial Developer. All Rights Reserved.
  22.  *
  23.  * Contributor(s):
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  27.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /**
  40.  * Key value pairs to derive the tag based on the page loaded.
  41.  * Each key is the page loaded when user clicks on one of the items on
  42.  * the accounttree of the AccountManager window.
  43.  * Value is a tag that is preset which will be used to display
  44.  * context sensitive help. 
  45.  */
  46. var pageTagPairs = {
  47.   "chrome://messenger/content/am-main.xul": "mail_account_identity",
  48.   "chrome://messenger/content/am-server.xul": "mail",
  49.   "chrome://messenger/content/am-copies.xul": "mail_copies",
  50.   "chrome://messenger/content/am-addressing.xul": "mail_addressing_settings",
  51.   "chrome://messenger/content/am-offline.xul": "mail-offline-accounts",
  52.   "chrome://messenger/content/am-smtp.xul": "mail_smtp",
  53.   "chrome://messenger/content/am-smime.xul": "mail_security_settings",
  54.   "chrome://messenger/content/am-serverwithnoidentities.xul": "mail_local_folders_settings",
  55.   "chrome://messenger/content/am-mdn.xul": "mail-account-receipts",
  56.   "chrome://messenger/content/am-fakeaccount.xul": "fake_account"
  57.  
  58. function doHelpButton() 
  59. {
  60.   // Get the URI of the page loaded in the AccountManager's content frame.
  61.   var pageSourceURI = contentFrame.location.href;
  62.   // Get the help tag corresponding to the page loaded.
  63.   var helpTag = pageTagPairs[pageSourceURI];
  64.  
  65.   // If the help tag is generic or offline, check if there is a need to set tags per server type
  66.   if ((helpTag == "mail") || (helpTag == "mail-offline-accounts")) {
  67.     // Get server type, as we may need to set help tags per server type for some pages
  68.     var serverType = GetServerType();
  69.   
  70.     /**
  71.      * Check the page to be loaded. Following pages needed to be presented with the 
  72.      * help content that is based on server type. For any pages with such requirement
  73.      * do add comments here about the page and a new case statement for pageSourceURI
  74.      * switch.
  75.      * - server settings ("chrome://messenger/content/am-server.xul")
  76.      * - offline/diskspace settings ("chrome://messenger/content/am-offline.xul")
  77.      */ 
  78.     switch (pageSourceURI) {
  79.       case "chrome://messenger/content/am-server.xul":
  80.         helpTag = "mail_server_" + serverType;
  81.         break;
  82.  
  83.       case "chrome://messenger/content/am-offline.xul":
  84.         helpTag = "mail_offline_" + serverType;
  85.         break;
  86.  
  87.       default :
  88.         break;
  89.     }
  90.   }
  91.  
  92.   if ( helpTag ) 
  93.       openHelp(helpTag);  
  94.   else
  95.     openHelp('mail'); 
  96. }
  97.  
  98. /**
  99.  * Get server type of the seleted item
  100.  */
  101. function GetServerType()
  102. {
  103.   var serverType = null;
  104.   var idStruct = getServerIdAndPageIdFromTree(accounttree);
  105.   if (idStruct) {
  106.     var account = getAccountFromServerId(idStruct.serverId);
  107.     if (account) {
  108.       serverType = account.incomingServer.type;
  109.     }
  110.   }
  111.   return serverType;
  112. }
  113.